home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Event Handlers / PedHandlerOpenDoc.cc < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  442 b   |  32 lines

  1. /*    ====================
  2.  *    PedHandlerOpenDoc.cc
  3.  *    ====================
  4.  */
  5.  
  6. #include "PedestalDebugging.h"
  7.  
  8. // Pedestal
  9. #include "PedHandlerOpenDoc.hh"
  10. #include "PedApplication.hh"
  11.  
  12.  
  13. PedHandlerOpenDoc::PedHandlerOpenDoc(PedApplication &inApp)
  14. : mApp(inApp)
  15. {
  16. }
  17.  
  18. PedHandlerOpenDoc::~PedHandlerOpenDoc()
  19. {
  20. }
  21.  
  22. void
  23. PedHandlerOpenDoc::NotifyAppOpenDocEvent()
  24. {
  25.     mApp.NotifyOpenDocEvent();
  26. }
  27.  
  28. void
  29. PedHandlerOpenDoc::DoOpenDoc(FSSpec &inFSS)
  30. {
  31. }
  32.